home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.166 < prev    next >
Text File  |  1996-02-12  |  28KB  |  834 lines

  1. Frequently Asked Questions (FAQS);faqs.166
  2.  
  3.  
  4.  
  5. You have a few options:
  6.  
  7.  a. Run the Installer on a newly formatted disk. This means that HD Setup
  8.     will do all the partitioning (etc...) and the installation will
  9.     proceed. Note that this means you will be "stuck" with the Apple drivers
  10.     whenever you are in the _real_ MacOS Finder.
  11.  
  12.  b. If you want to use the drivers on your HD utility (for stuff like,
  13.     maybe, password protection of partitions) then you have two (maybe
  14.     three )additional options:
  15.  
  16.    i. Use 'a' above to install A/UX. Then use your HD utility program to
  17.       "take over" the disk, disabling (or even removing) the Apple drivers
  18.       and installing it's own. Note that if there isn't enough space to
  19.       install it's drivers, most will attempt to "shrink" the MacOS
  20.       partition to make room. Most can do this with no problem, but why
  21.       take the risk... when you partition the disk, leave about 64K
  22.       available as free space.
  23.  
  24.   ii. Use your HD utility to create the partitions. Then, before you
  25.       run the Installer, run 'newfs' "by hand" to create the file systems
  26.       so that the installation can proceed.
  27.  
  28.  iii. Use your HD utility to format (etc...) your disk and create
  29.       _only_ the MacOS partition. Now run the Installer. In most cases
  30.       HD Setup will work fine with the driver installed on the disk.
  31.       You can now use it to create the A/UX partitions.
  32.  
  33.       <<ED: I _know_ this (iii) works with FWH HDT 1.1.x>>
  34.  
  35. ===
  36. 45)  I'm using a LaserWriter IIg with A/UX 3.0 and whenever I print some-
  37.      thing to it through 'lpr', the first line of the page is cut off. Why?
  38.  
  39. This only shows up on versions of the IIg (and IIf) with less than 5MB RAM.
  40. The reason is because this makes the LW default to PhotoGrade-mode. You can do
  41. 2 things to fix this:
  42.  
  43.     1. Using the LaserWriter Utility program, disable PhotoGrade.
  44.        Since one of the main advantages of these LW's is PhotoGrade,
  45.        this option is kinda unpalatable.
  46.  
  47.     2. If you are _only_ using "Letter" mode under 'lpr', then you
  48.        can edit /usr/lib/ps/pstext.pro to include the following line
  49.        between "% RCSID:..." and "/StartPage...":
  50.  
  51.        %!PS-Adobe-1.0
  52.        % Z%Copyright Apple Computer 1987\tVersion 1.1 of pstext.pro on\
  53.          87/05/04 19:02:25
  54.        %%Creator: pstext
  55.        %%DocumentFonts: Courier
  56.        % RCSID: $Header: pstext.pro,v 2.1 85/11/24 12:19:55 shore Rel $
  57.  =====>>>>>letter
  58.        /StartPage{/sv save def 48 760 moveto}def
  59.  
  60. This will fix the problem and make it usable again.
  61.  
  62. ===
  63. 46)  Whenever I try to run xinit (or startx) from the CommandShell I get
  64.      a fatal server error. Why?
  65.  
  66. The reason why is because both X and the CommandShell want _complete_ control
  67. over your Mac (display, keyboard and mouse). So, when you try to start one
  68. while running the other, you'll get into trouble. You need to start X either
  69. from the Console Emulator Mode or by choosing it as your "session type" from
  70. the Login screen (This session type will be available only if your installed
  71. Apple's X or have installed John Coolidge's 'sessiontypes' for X11R5).
  72.  
  73. ===
  74. 47)  I'm trying to access my tape drive using 'tc' (with something like
  75.      "find . -print | cpio -o > /dev/rmt/tc1") but it doesn't work...
  76.  
  77. Except for 9-track magtapes, all I/O to tape drives associated with the
  78. 'tc' device files _must_ be blocked at 8k. The 'tcb' program does just
  79. that so that should be included. For example, to write:
  80.  
  81.     $ find . -print | cpio -o | tcb > /dev/rmt/tc1
  82.  
  83. And to read:
  84.  
  85.     $ tcb < /dev/rmt/tc1 | cpio -i
  86.  
  87. You can get better performance if you increase the buffer size (just make
  88. sure that it's a multiple of 8k). For example, you could use 'dd' as
  89. your blocking filter with a 'bs=10x8k'.
  90.  
  91. Jim Jagielski's replacement for 'tc' allows for 'tc' to use the
  92. tape drive's own physical block size as the logical block size
  93. for I/O. Doing so results in a noticeable performance hit and it
  94. isn't recommended for normal use. Use the "mode" _ONLY_ if you
  95. need to read tapes written by 'st' or by another platform. Please
  96. note you are still limited to an I/O block size of at least the
  97. physical block size, which can be anything for 512 to 1024 to 8192 bytes.
  98.  
  99. |'tc' 3.12 can also emulate variable block lengths (which A/UX's SCSI
  100. Manager doesn't support). Doing so results in a _huge_ performance
  101. hit since the drive must handshake on the transfer of each byte. This
  102. mode is only included to help in reading/writing tapes that will be used
  103. on other platforms.
  104.  
  105. %%% For more information about 'tc', please contact Jim via E-mail %%%
  106.  
  107. ===
  108. 48)  What CD-ROM drives are compatible with A/UX 3.0?
  109.  
  110. Of course, the Apple CD-ROM drive is 100% compatible with A/UX. The following
  111. are also known to be 100% compatible (meaning you can use them to install
  112. A/UX as well as when running A/UX):
  113.  
  114.     The Toshiba XM3201B and XM3301B
  115.     DEC RRD42
  116.     Sun CD-ROM (Sony CDU-8012?)
  117.     CD-Technologies Porta-Drive CD-ROM
  118.     Chinon CDA-431
  119.  
  120. ===
  121. 49)  Do I install CDEVs and Extensions in the System Folder on MacPartition
  122.      or on the "/" A/UX disk.
  123.  
  124. To install these additions to A/UX, you will need to drag-copy them over
  125. to the A/UX System Folder. Usually, this is /mac/sys/System Folder on
  126. the "/" disk but it will also "appear" in your "home folder" icon.
  127.  
  128. ===
  129. 50)  I heard that A/UX requires a special version of System 7 to boot...
  130.      Is this true?
  131.  
  132. A lot of people believe this but this is not true. There is no difference
  133. between the s/w on the MacPartition partition and the "real" System 7.
  134. The only _real_ need for MacPartition is that the disk where A/UX Startup
  135. lives is where A/UX Startup looks for the A/UX Root partition. When A/UX
  136. Startup launches, it looks at "it's" disk and then looks for A/UX partitions
  137. on that disk. This means that you _don't_ need to boot-up from the
  138. MacPartition disk to boot A/UX. Start your Mac from your standard Startup
  139. disk and just double-click on A/UX Startup on the MacPartition icon.
  140.  
  141. You can even do without the MacPartition disk but telling A/UX Startup
  142. the exact SCSI number of the A/UX disk. You can do this a couple of ways:
  143.  
  144.     1. create a ROOT variable in A/UX Startup that points to the
  145.        root partition in this form: (SCSI-ID, 0, 0)
  146.  
  147.     2. Under the General Preferences menu, change the Root Directory
  148.        to (SCSI-ID, 0, 0).
  149.  
  150. The "device" file /dev/default points to the SCSI-ID of whatever disk is the
  151. MacPartition disk, so if you don't have one, you need to tell A/UX Startup
  152. it's "real" name. This is kinda messy since you'll need to preface a lot
  153. of stuff with this value: e.g.
  154.  
  155.     #startup cat (6,0,0)/etc/inittab
  156.  
  157. ===
  158. 51)  I've tried to install the CD Remote extension to A/UX so that
  159.      I can play audio CD's, but it doesn't work...
  160.  
  161. At present, A/UX will not allow you to play your audio CD's on a CD-ROM
  162. drive, so don't attempt to install the CD Remote extension (see below #52).
  163.  
  164. ===
  165. 52)  What CD-ROM formats does A/UX support?
  166.  
  167. A/UX supports ISO file system format CD-ROMs. The catch is that A/UX only
  168. supports ISO in the MacOS mode (i.e. you can't 'mount' the CD-ROM as an
  169. UNIX file system). To allow this, you'll need to copy 3 Mac files to
  170. the System Folder that's active when you want to use ISO CD-ROMs. The files,
  171. which must be obtained from the Apple CD-ROM Software Disk (vers. 3.2 or
  172. later) are: ISO 9660 File Access, High Sierra File Access and Foreign
  173. File Access (the latter is an Extension). Logging out of the MacOS mode
  174. and then logging back in will "complete" the installation. Do _not_
  175. install the Apple CD-ROM extension, since it is built into A/UX.
  176.  
  177. Again, please note that A/UX will not recognize _any_ of the audio
  178. capability of CD-ROMs.
  179.  
  180. ===
  181. 53)  How can I add printers other than those available via the Chooser?
  182.  
  183. <<ED: From a post by Antonio Ordonex (antonio@apple.com)>>
  184.  
  185. If the printer is in another zone, it is necessary to define the zone in
  186. which the printer is located with a full path name.  You can then
  187. "hardwire" a printer name including the zone for a particular printer
  188. queue.
  189.  
  190. The best way to do this is to make a copy the /usr/spool/lpd/AppleTalk
  191. directory and give it a name related to the printer we want to use. Modify
  192. the file ifilter/ofilter/nfilter  (it is the same file with 3 hard links)
  193. in this directory. Also modyfy the /etc/printcap file to create a new
  194. printer queue.
  195.  
  196. I will use my system as an example so please modify to reflect your
  197. situation.
  198.  
  199. The first thing to do is to create the new directory and put the correct
  200. files in it. NOTE that I am using mknod to create the pipe file.
  201.  
  202. mkdir Idaho
  203. chown daemon Idaho
  204. chgrp daemon Idaho
  205. cp AppleTalk/ifilter Idaho/ifilter
  206. cd Idaho
  207. ln ifilter ofilter
  208. ln ofilter nfilter
  209. mknod pipe p
  210. chown daemon *
  211. chgrp daemon *
  212.  
  213. In my case I have a printer called "Idaho Spooler" in the zone "SCV CAM2
  214. 2nd W"  while my system is on the zone "SCV CAM2 2nd E", so all I do is to
  215. modify the /usr/spool/lpd/Idaho/ifilter file (you can use vi or
  216. TextEditor)
  217. and change the line that defines the value for Printer from
  218.  
  219. Printer=`basename "cwd"`
  220.     -to-
  221. Printer="Idaho Spooler:LaserWriter@SCV CAM2 2nd W"
  222.  
  223. In the /etc/printcap file I copy the entry for AppleTalk (all six lines)
  224. and change any reference to AppleTalk to the name I used for my new
  225. directory. Again, in my case I used "Idaho" as the directory name so my
  226. /etc/printcap file looks like
  227.  
  228. #
  229. # pragma ident "@(#)lpr:printcap        5.4 90/03/27 "
  230. #
  231. # Copyright 1990 Apple Computer, Inc.
  232. # All Rights Reserved.
  233. ##
  234. # Remote AppleTalk printer (selected by Chooser)
  235. # For an AppleTalk printer which doesn't support PostScript remove last 2
  236. names.
  237. lp|at|AppleTalk|postscript|PostScript:\
  238.         :lp=/dev/null:\
  239.         :if=/usr/spool/lpd/AppleTalk/ifilter:\
  240.         :of=/usr/spool/lpd/AppleTalk/ofilter:\
  241.         :nf=/usr/spool/lpd/AppleTalk/nfilter:\
  242.         :sd=/usr/spool/lpd/AppleTalk:
  243. lp2|Idaho:\
  244.         :lp=/dev/null:\
  245.         :if=/usr/spool/lpd/Idaho/ifilter:\
  246.         :of=/usr/spool/lpd/Idaho/ofilter:\
  247.         :nf=/usr/spool/lpd/Idaho/nfilter:\
  248.         :sd=/usr/spool/lpd/Idaho:
  249.  
  250. After all these steps are completed restart the printer queue with the
  251. command
  252.  
  253. lpc restart all
  254.  
  255. Now you should be able to send a print job to the printer in the other
  256. zone
  257. with the command
  258.  
  259. lpr -Plp2 /etc/passwd
  260.  
  261. or
  262.  
  263. lpr -PIdaho /etc/passwd
  264.  
  265. Hope this helps
  266.  
  267. ===
  268. 54)  After the Mac environment crashes (or when I use MacsBug), the
  269.      Desktop gets all screwed up... Argg!!
  270.  
  271. Ron Flax of Apple (ron@afsg.apple.com) has written a very useful System
  272. Extension called FMbackup that creates backup copies of "valuable" Desktop
  273. files. When the MacOS-mode is entered, FMbackup restores these files. Thus,
  274. when your MacOS "crashes", you no longer need to rebuild the Desktop
  275. or reset all your Icons, window "types", etc... Please note that there
  276. seems to be some incompatibilty between FMbackup and Moire and
  277. QuickMail 2.5.1.
  278.  
  279. FMbackup (1.0.4) is available via anon-ftp on afsg.apple.com as well as
  280. aux.support.apple.com (in "unsupported").
  281.  
  282. %%% For more information about "FMbackup", please contact Ron via E-mail %%%
  283.  
  284. ==
  285. 55)  My MacOS partition(s) only show up on the Desktop when I login
  286.      as root. Why?
  287.  
  288. Under the Preferences/General Menu of A/UX Startup, there is a radio-box
  289. called "Password checking". This is intended to provide some security for
  290. the A/UX Startup application. When enabled, two (default) things happen:
  291.  
  292.     1. A/UX Startup requires a password to open.
  293.     2. MacOS partition(s) are only mounted for root login.
  294.  
  295. Thus, to enable MacOS partition(s) to be available for all users, you must
  296. disable "Password checking". See auxstartuprc(4) for more info.
  297.  
  298. ==
  299. 56)  For some reason, my CommandShell only responds to a keyboard
  300.      event after it receives a second event. For example, typing "a"
  301.      won't show until I type something else or click the mouse.
  302.      What gives?
  303.  
  304. +This is caused almost 99% of the time by an Extension|CDEV conflict. The
  305. +way around this is to selectively disable each one at a time and see which
  306. +one causes the problem... then delete it. "Wild Magic" is prone to do this
  307. +as are older versions of CEToolbox.
  308.  
  309. ==
  310. //////////////////////  END OF PART 2 OF 2  \\\\\\\\\\\\\\\\\\\\\\
  311.  
  312.  
  313. --
  314.     Jim Jagielski               | "It is not I who am crazy...
  315.     jim@jagubox.gsfc.nasa.gov   |  it is I who am MAD!"
  316.     NASA/GSFC, Code 734.4       |
  317.     Greenbelt, MD 20771         |            - Ren
  318. Xref: bloom-picayune.mit.edu rec.backcountry:26746 news.answers:4326
  319. Newsgroups: rec.backcountry,news.answers
  320. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!spool.mu.edu!agate!ames!data.nas.nasa.gov!amelia.nas.nasa.gov!eugene
  321. From: eugene@amelia.nas.nasa.gov (Eugene N. Miya)
  322. Subject: [l/m 11/1/92] rec.backC DISCLAIMER -- Distilled wisdom (1/28)   XYZ
  323. Followup-To: poster
  324. Approved: news-answers-request@MIT.Edu
  325. Sender: news@nas.nasa.gov (News Administrator)
  326. Organization: NAS Program, NASA Ames Research Center, Moffett Field, CA
  327. Date: Tue, 1 Dec 92 12:20:13 GMT
  328. Message-ID: <1992Dec1.122013.24838@nas.nasa.gov>
  329. Reply-To: eugene@amelia.nas.nasa.gov (Eugene N. Miya)
  330. Lines: 172
  331.  
  332. Archive-name: backcountry-faq/part1
  333. news.answers: follows Disclaimer.
  334.  
  335. Distilled wisdom (panel 1)
  336.  
  337. This is rec.backcountry.  And the poster is the assistant to the r.b.nimng
  338. ranger (he's a ranger, not the net.police or net.sheriff as some would like).
  339. Read the warning, read the disclaimer, and if you are reading this in
  340. news.answers, read the special addition, and maybe the Table of Contents
  341. following the electronic zoological report.
  342.  
  343. Be warned:
  344. 1) The "outdoors" are HAZARDOUS, LETHAL, FATAL, TERMINAL w/o extreme prejudice.
  345. As of this count, three readers of this group are now former-readers.
  346. Anyone, including highly experienced people, can be killed.
  347. 2) The information given in this chain of postings should be taken with
  348. a grain of salt.  Failure to heed this advice goes back to warning 1.
  349. 3) There is no such thing as an "outdoors expert."  Experienced people
  350. realize this.  The mountain does not know that you are an expert.
  351. 4) A memorial to my friends, our friends, our fallen comrades,
  352. our admirations is integrated as a rec.climbing FAQ panel.  Why climbing?
  353. Most were climbers.
  354.  
  355.     "A man's got to know his limitations..."
  356.         --Harry Callahan, Magnum Force
  357.             [Also quoted by Galen Rowell]
  358.  
  359. DISCLAIMER:
  360. "Books are not a substitute for skill, nor can they make safe those who do not
  361. practice the principles of safety.  Books are not substitutes for training.
  362. We do not wish to discourage people who have age old urges.  But they can
  363. answer simple problems and questions.  It is urged that the inexperienced
  364. avail themselves of instruction, training, and mentorship.  We would
  365. counsel you remember the virtues of progressive training: ... you crawled
  366. before you walked and walked before you ran.  It would be well to take
  367. your pioneering in little nibbles rather than big leaps.  Try the easy off
  368. trail walks first, then the easy peaks, then the harder ones, always covering
  369. yourself with a good route of retreat and plenty of time to make it.  And
  370. always herald the philosophy of Norman Clyde: The mountain will always be
  371. there tomorrow.  Aim to be able to say the same of yourself."
  372. Adapted from the words of (the late) Hervey Voge and David Brower.
  373.  
  374. news.answers: This post is the first part of a 28 part experimental FAQ
  375. post (a chain).  The other 27 parts are listed in the contents below.
  376. The other 27 parts are posted one day at a time. These additional parts
  377. are NOT posted to news.answers but can be read by temporarily subscribing to
  378. rec.backcountry.  The composition of all attributes in
  379. the contents and Header were deliberately set for the instrumentation and
  380. experimentation toward discussion self-moderation and maintenance
  381. (for instance "FAQ" appears no where in the Subject line; the host is also
  382. a special host, etc.).  The chain's headers (Subject line) are useful like
  383. a light house beacon.  The post is issued at the same time from the same
  384. host on each of those days: this makes a useful network metric.  Failed
  385. postings imply either the posting host dying, or a network connection
  386. dropping/failing.  These posts are also a useful test of literacy
  387. (how far you read, how well you read, etc.).  Occasionally you will see
  388. uninformed people read and comment about them (they didn't reach this
  389. paragraph, or the message didn't reach them, or they have not figure out
  390. what's going on [clueless]).  There is alot going on here and its all
  391. very deliberate.  Well,...  not all. ;^)
  392.  
  393. Electronic Zoological content of this backcountry:
  394. SO far we have readers who would be (Hey!  One life at a time, please):
  395. Flyers:
  396.     Cliff swallow
  397.     Whip-poor-will
  398.     Buzzard
  399.     2 Eagles
  400.     Mallard duck
  401.     Ptarmigan
  402.     Turkey Vulture
  403.     Great Horned Owl
  404.     Spotted Owl
  405.     Snowy Owl
  406.     Red tailed hawk
  407.     Fulvous Whistling-Duck
  408.     Raven
  409.     Crow
  410.     Peregrine Falcon
  411.     Bat
  412.  
  413. NA ground mammals
  414.     Yellow bellied marmot
  415.     Moose
  416.     Jack Rabbit
  417.     Bunny rabbit
  418.     Bighorn sheep
  419.     2 Mountain Goats
  420.     2 Otter (maybe 1 river)
  421.     Mule (female)
  422.     Donkey
  423.     Sloth
  424.     Oppossum
  425.     Raccoon
  426.     Poodle (with a Mohawk, Pampered Poodle with Perm)
  427.     2 Lynx (1 Canadian)
  428.     cougar or panther (black, of course)
  429.     2 coyotes
  430.     Grizzly Bear
  431.     Black bear
  432.     Kodiak Bear (she)
  433.     Wolverine
  434.     4 Wolves (1 Timber)
  435.  
  436. Water species
  437.     Sperm Whale
  438.     Orca
  439.     2 Dolphin
  440.     Manta Ray
  441.     Man-O-War
  442.     muskellunge
  443.     Giant squid (ala 20K leagues under the sea)
  444.     Golden Trout (with the Right Stuff)
  445.  
  446. African/Asian species
  447.     Ring Tailed Lemur
  448.     2 Elephant (1 - African)
  449.     Lion (King of the jungle)
  450.     Oryx
  451.     2 Tiger (1- white)
  452.     Snow Leopard
  453.  
  454. Reptiles
  455.     Tuatara lizard
  456.     Galapagos tortoise
  457.  
  458. Amph:
  459.     Salamander
  460.  
  461. Plants:
  462.     Lichen
  463.     Western Red Cedar
  464.     Slime mold
  465.  
  466. Amoeba:
  467.     Giardia lamblia
  468.  
  469. Misc.
  470.     T. Rex
  471.     Yeti
  472.  
  473. TABLE OF CONTENTS of this chain:
  474.  
  475. 1/ DISCLAIMER                        <* THIS PANEL *>
  476. 2/ Ethics
  477. 3/ Learning I
  478. 4/ learning II (lists, "Ten Essentials," Chouinard comments)
  479. 5/ Summary of past topics
  480. 6/ Non-wisdom: fire-arms topic circular discussion
  481. 7/ Phone / address lists
  482. 8/ Fletcher's Law of Inverse Appreciation and advice
  483. 9/ Water Filter wisdom
  484. 10/ Words from Rachel Carson
  485. 11/ Snake bite
  486. 12/ Netiquette
  487. 13/ Questions on conditions and travel
  488. 14/ Dedication to Aldo Leopold
  489. 15/ Leopold's lot.
  490. 16/ Backcountry mortality
  491. 17/ Information about bears
  492. 18/ Poison ivy, frequently ask, under question
  493. 19/ Lyme disease, frequently ask, under question
  494. 20/ "Telling questions" backcountry Turing test
  495. 21/ AMS
  496. 22/ Words from Foreman and Hayduke
  497. 23/ A bit of song (like camp songs)
  498. 24/ What is natural?
  499. 25/ A romantic notion of high-tech employment
  500. 26/ Other news groups of related interest, networking
  501. 27/ Films/cinema references
  502. 28/ References (written)
  503.  
  504. Xref: bloom-picayune.mit.edu rec.bicycles.misc:1368 news.answers:4253
  505. Path: bloom-picayune.mit.edu!enterpoop.mit.edu!usc!news.service.uci.edu!nntpsrv
  506. From: iglesias@draco.acs.uci.edu (Mike Iglesias)
  507. Subject: Rec.Bicycles Frequently Asked Questions Posting  Part 1/4
  508. Nntp-Posting-Host: draco.acs.uci.edu
  509. Expires: 15 Jan 93 00:00:00 GMT
  510. Message-ID: <rec-bicycles-faq-1_9211290@draco.acs.uci.edu>
  511. Newsgroups: rec.bicycles.misc,news.answers
  512. Approved: news-answers-request@MIT.Edu
  513. Organization: University of California, Irvine
  514. Lines: 1417
  515. Supersedes: <rec-bicycles-faq-1_921018@draco.acs.uci.edu>
  516. Date: 30 Nov 92 06:21:47 GMT
  517. Followup-To: rec.bicycles.misc
  518.  
  519. Archive-name: bicycles-faq/part1
  520.  
  521. Answers to Rec.Bicycles' Frequently Asked Questions and Interesting Information
  522.  
  523. Last modified:  November 29, 1992
  524.  
  525.  
  526. The following monthly posting contains the answers to frequently asked
  527. questions posed to rec.bicycles and interesting information that
  528. cyclists might find useful.  Some of the answers are from postings to
  529. rec.bicycles, and and some are condensed from postings.  Answers
  530. include the name and email address of the author.  If no author is
  531. listed, I'm the guilty party.  If you're the author and I've
  532. misspelled your name or have the wrong email address, let me know and
  533. I'll fix it.
  534.  
  535. If you have something you feel should be included in the FAQ, please
  536. write it up and send it to me at the address below.
  537.  
  538. Note:  I don't read each and every posting to rec.bicycles.*, so suggesting
  539. that something be included in the FAQ may not be seen.  If you want
  540. something included, summarize the discussion and send me the summary.
  541.  
  542.  
  543. Mike Iglesias
  544. iglesias@draco.acs.uci.edu
  545.  
  546. ===========================================================================
  547.  
  548. Quick Index:
  549. (* means section hasn't been written yet.  ! means updated since last
  550. FAQ.  + means new section.)
  551.  
  552.   Abbreviations
  553.   Archives
  554.   Books and Magazines
  555.   Electronic Mailing Lists
  556.   Mail Order Addresses
  557.   Posting Guidelines
  558. ! Technical Support Numbers
  559.   General Information
  560.     Road Gradient Units
  561.     Ball Bearing Grades
  562.     Tour de France Jerseys
  563.     Major Tour Winners  1947-1991
  564.     Rating Tour de France climbs
  565.     Bike Trailers
  566.     One Less Car T-Shirts
  567.     Panniers and Racks
  568.     Helmets
  569.     Clothing
  570.     Seats
  571.     SIS Cables
  572.     Terminology
  573.     Maps
  574.     Women's Saddles
  575.     Women's Bikes
  576.     Bike Rentals
  577.     Bike Lockers
  578.     Bike Computer Features
  579.     Avoiding Dogs
  580.     Shaving Your Legs
  581.     Contact Lenses and Cycling
  582.     Bicycling in America
  583.   Recumbents
  584.     Recumbent Bike Info
  585.     More Recumbent Bike Info
  586.   Commuting
  587.     How to deal with your clothes
  588.   Cold Weather Cycling
  589.     Pete's Winter Cycling Tips
  590.     Nancy's Cold/Wet Cycling Tips
  591.     Studded Tires
  592.     Milk Jug Mud Flaps
  593.   Touring
  594.     Touring supplies
  595.   Cycling Myths
  596.   Buying a Bike
  597.   Chains
  598.     Lubrication
  599.     Wear and Gear Slipping
  600.     Adjusting Chain Length
  601.     Hyperglide Chains
  602.   Cranks and Bottom Brackets
  603.     Bottom Bracket Info
  604.     Crank Noise
  605.     Cracking/Breaking Cranks
  606.     Biopace Chainrings
  607.   Tires, tubes and rims
  608.     Snakebite flats
  609.     Blown Tube
  610.     Mounting Tires
  611.     More Flats on Rear Tires
  612.     Anodized vs. Non-anodized Rims
  613.     Clinchers vs. Tubulars
  614.     Presta Valve Nuts
  615.     Ideal Tire Sizes
  616.   Brakes
  617.     Center Pivot vs. Dual Pivot brakes
  618.   Headsets, Forks
  619.     Indexed Steering
  620.   Adjustments
  621.     Seat adjustments
  622.     Cleat adjustments
  623.     SIS derailleur adjustments
  624.   Tools and Workstands
  625.     Where to buy tools
  626.     Workstands
  627.   Riding Techniques
  628.     Descending I
  629.     Descending II
  630.     Trackstands
  631.   Nutrition and Food
  632.     Nutrition Primer
  633.     Nuclear Free Energy Bar recipe
  634.     Powerbars
  635.     Calories burned by cycling
  636.   Frames
  637.     Frame stiffness comparison
  638.     Frame materials
  639.     Bike pulls to one side
  640.     Frame repair
  641.     Frame Fatigue
  642.   Injuries
  643.     Road rash
  644.     Knee problems
  645.  
  646. ===========================================================================
  647.  
  648. Abbreviations
  649.  
  650. Some common abbreviations used here and in rec.bicycles.*:
  651.  
  652.   FAQ  Frequenly Asked Question.  What you are reading now is a file
  653.        containing answers to some FAQs.
  654.  
  655.   IMHO  In my humble opinion.
  656.  
  657.   TIOOYK  There Is Only One You Know.  Refers to the Tour de France.
  658.  
  659. ===========================================================================
  660.  
  661. Archives
  662.  
  663. I've made available via anonymous ftp a copy of the current FAQ and a
  664. few other items on draco.acs.uci.edu (128.200.34.12).  This is the
  665. workstation on my desk, so I'd appreciate it if people would restrict
  666. their use to 7pm-7am Pacific time.  The files are in pub/rec.bicycles.
  667.  
  668. For those without Internet access, you can use the ftpmail server at
  669. gatekeeper.dec.com to get copies of the items there.  I really don't
  670. have time to email copies of files to people who can't get at them
  671. easily.  To use the FTP server, send an email message containing the
  672. line
  673.  
  674. help
  675.  
  676. in the body of the message to ftpmail@gatekeeper.dec.com.  You'll get
  677. a help file back from the FTP server with more information on how to
  678. use it.
  679.  
  680.                 README for Rec.Bicycles Anonymous FTP area
  681.  
  682. bike.lockers    David H. Wolfskill's (david@dhw68k.cts.com) summary of
  683.         bike locker vendors.
  684.  
  685. bike.painting   Sam Henry's (shenry@rice.edu) collection of articles on
  686.         how to paint a bike.
  687.  
  688. bike_power.*    Ken Roberts program to calculate power output and power
  689.         consumption.  See bike_power.doc for more info.
  690.  
  691. biking_log.hqx    Phil Etheridge's (phil@massey.ac.nz) hypercard stack
  692.         riding diary.  It keeps track of dates, distance, time,
  693.         average speed, etc., and keeps running weekly, monthly,
  694.         and yearly totals.
  695.  
  696. bmb.ride    Pamela Blalock's (pamela@keps.com) report on her 1992
  697.         Boston-Montreal-Boston ride.
  698.  
  699. competitive.nutrition
  700.         Roger Marquis' (marquis@well.uucp) article from the
  701.         Feb 91 Velo News on nutrition and cycling.
  702.  
  703. faq.*        The current Frequently Asked Questions posting
  704.  
  705. first.century    Pamela Blalock's (pamela@keps.kodak.com) tips on training
  706.         for your first century ride.
  707.  
  708. lights        Tom Reingold's (tr@samadams.princeton.edu) collection of
  709.         articles on bike lights.
  710.  
  711. lights2        More articles from rec.bicycles.* on lights.
  712.  
  713. mtb.buy        Joakim Karlsson's (aviator@athena.mit.edu) article on
  714.         buying an entry-level MTB.
  715.  
  716. pbp.info    Pamela Blalock's (pamela@keps.kodak.com) information
  717.         on her Paris-Brest-Paris ride.
  718.  
  719. pictures    Bicycling gif pictures.
  720.  
  721. prof.sched    Roland Stahl's (stahl@ipi.uni-hannover.de) list of
  722.         scheduled professional races in many countries.
  723.  
  724. ride.index    Chris Hull's/Bill Bushnell's (bushnell@lmsc.lockheed.com)
  725.         explanation of a way to "index" rides and compare the
  726.         difficulty of different rides.
  727.  
  728. spike.bike    Bob Fishell's (spike@cbnewsd.att.com) Spike Bike series.
  729.         They are numbered in the order that Bob posted them to
  730.         rec.bicycles.  All the Spike Bike stories are
  731.         "Copyright 1989 by Robert Fishell, all rights reserved."
  732.  
  733. spokelen11.bas    Roger Marquis' (marquis@well.uucp) spoke length
  734.         calculator, written in Microsoft Quickbasic.
  735.  
  736. spokelen.c    Andy Tucker's (tucker@Neon.Stanford.EDU) port of
  737.         Roger Marquis' spokelen11.bas to C.
  738.  
  739. studded.tires    Nancy Piltch's (piltch@ariel.lerc.nasa.gov) compilation
  740.         of messages on studded tires, including how to make your
  741.         own.
  742.  
  743. tandem.boxes    Arnie Berger's (arnie@col.hp.com) notes on how
  744.         he built a box to transport his tandem to Europe and
  745.         back.  It's taken from a longer travelogue on his trip - if
  746.         you want more information, contact him at the above
  747.         address.
  748.  
  749. tech.supp.phone Joshua Putnam's (josh@Happy-Man.com) list of technical
  750.         support numbers for various manufacturers.  This list
  751.         used to be in the FAQ but now is too long to include there.
  752.  
  753. trailers    A summary posting of messages about bike trailers.  Good
  754.         stuff if you're thinking of buying a trailer.
  755.  
  756. wheels.*.hqx    R. Scott Truesdell's (truesdel@ics.uci.edu) Hypercard
  757.         stack to calculate spoke lengths.  See wheels.readme
  758.         for more info.
  759.  
  760. wintertips    Pete Hickey's (pete@panda1.uottawa.ca) notes about
  761.         how to cycle in the winter.
  762.  
  763.  
  764.  
  765. Files available via anonymous ftp from ugle.unit.no (129.241.1.97)
  766. in the directory local/biking. This directory is maintained by Joern
  767. Dahl-Stamnes (dahls@fhydra.dnet.unit.no).
  768.  
  769. READ.ME         Information about the other files in the directory.
  770.  
  771. bm103.zip       The latest version of Bike Manager. The .uue file
  772. bm103.uue       is a uuencoded version of the .zip file.
  773.  
  774.                 Bike Manager is a shareware program that help you keep a
  775.                 log of your training activities. It can report summary
  776.                 reports, weekly reports, monthly reports and yearly
  777.                 reports. Features to analyze your activities against
  778.                 your goals. And more...
  779.  
  780. brake.doc       About how to make yourown brake booster.
  781.  
  782. gtos91.doc      The story from The Great Trial of Strength 1991.
  783.  
  784. gtos92.doc      Ditto, but for the 1992 trail.
  785.  
  786. ===========================================================================
  787.  
  788. Books and Magazines
  789.  
  790.   Magazines/Newsletters
  791.   ---------
  792.   Bicycling Magazine, and Bicycling Magazine+Mountain Bike insert
  793.   33 E Minor St
  794.   Emmaus, PA 18098
  795.   (215) 967-5171
  796.  
  797.   Bicycle Guide
  798.   711 Boylston Street
  799.   Boston MA 02116
  800.   617-236-1885
  801.  
  802.   Mountain Biking
  803.   7950 Deering Avenue
  804.   Canoga Park CA 91304
  805.   818-887-0550
  806.  
  807.   Mountain Bike Action
  808.   Hi-Torque Publications, Inc.
  809.   10600 Sepulveda Boulevard
  810.   Mission Hills, CA 91345
  811.   818-365-6831
  812.  
  813.   Velo News
  814.   P.O. Box 53397
  815.   Boulder, CO 80323-3397
  816.  
  817.   Cycling Science
  818.   P.O. Box 1510
  819.   Mount Shasta, California 96067
  820.   (916) 938-4411
  821.  
  822.   Human Power (The Journal of the IHPVA*)
  823.   (* IHPVA == International Human Powered Vehicle Association)
  824.   IHPVA
  825.   PO 51255
  826.   Indianapolis, IN 46251-0255
  827.   (317) 876-9478
  828.  
  829.   OnTour: The Newsletter for Bicycle Tourists
  830.   OnTour Publications
  831.   2113 Arborview
  832.   Ann Arbor, MI 48103.
  833.   Sample issues are only $1, a six-issue subscription only $6
  834.